home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / gemfsc18.lzh / AESSRC18.LZH / AESFUNCS / FRMERROR.C < prev    next >
C/C++ Source or Header  |  1992-03-24  |  544b  |  25 lines

  1. /**************************************************************************
  2.  * FRMERROR.C - The frm_error() and frm_qerror() routines.
  3.  *************************************************************************/
  4.  
  5. #include <stdarg.h>
  6. #include "gemfast.h"
  7. #include "exterror.h"
  8.  
  9. int frm_error(err, buttons, fmt)
  10.     int     err;
  11.     char    *buttons;
  12.     char    *fmt;
  13. {
  14.     int     rv;
  15.     va_list args;
  16.     
  17.     va_start(args, fmt);
  18.     rv = frm_verror(err, buttons, fmt, args);
  19.     va_end(args);
  20.     
  21.     return rv;
  22. }
  23.  
  24.  
  25.